type runtime.muintptr
14 uses
runtime (current package)
mgc.go#L1258: m muintptr
proc.go#L2365: newm muintptr
runtime2.go#L306: type muintptr uintptr
runtime2.go#L309: func (mp muintptr) ptr() *m { return (*m)(unsafe.Pointer(mp)) }
runtime2.go#L312: func (mp *muintptr) set(m *m) { *mp = muintptr(unsafe.Pointer(m)) }
runtime2.go#L320: (*muintptr)(unsafe.Pointer(mp)).set(new)
runtime2.go#L479: lockedm muintptr
runtime2.go#L575: schedlink muintptr
runtime2.go#L580: nextwaitm muintptr // next m waiting for lock
runtime2.go#L628: m muintptr // back-link to associated m (nil if idle)
runtime2.go#L784: midle muintptr // idle m's waiting for work
rwmutex.go#L20: readers muintptr // list of pending readers
rwmutex.go#L24: writer muintptr // pending writer waiting for completing readers
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |